[github] Fix invalid local action invocation in release-doxygen workflow - #197107
Merged
Conversation
Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml` to use a valid local action invocation.
Before:
```yaml
- name: Validate Input
./.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}
```
After:
```yaml
- name: Validate Input
uses: ./.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}
```
GitHub Actions steps must use `uses:` or `run:`. The current form is invalid.
This appears to have been introduced in llvm#196769.
- Verified the workflow syntax change is minimal and correct.
- No functional behavior intended beyond fixing the invalid step declaration.
|
@llvm/pr-subscribers-github-workflow Author: Konrad Kleine (kwk) ChangesFix the Before: - name: Validate Input
./.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}After: - name: Validate Input
uses: ./.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}GitHub Actions steps must use This appears to have been introduced in #196769.
Full diff: https://github.com/llvm/llvm-project/pull/197107.diff 1 Files Affected:
diff --git a/.github/workflows/release-doxygen.yml b/.github/workflows/release-doxygen.yml
index 7bf5e5e94f905..69efa72f323a4 100644
--- a/.github/workflows/release-doxygen.yml
+++ b/.github/workflows/release-doxygen.yml
@@ -60,7 +60,7 @@ jobs:
LLVM_TOKEN_GENERATOR_PRIVATE_KEY: ${{ secrets.LLVM_TOKEN_GENERATOR_PRIVATE_KEY }}
- name: Validate Input
- ./.github/workflows/validate-release-version
+ uses: ./.github/workflows/validate-release-version
with:
release-version: ${{ inputs.release-version }}
|
lialan
pushed a commit
to lialan/llvm-project
that referenced
this pull request
May 13, 2026
…low (llvm#197107) Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml` to use a valid local action invocation. Before: ```yaml - name: Validate Input ./.github/workflows/validate-release-version with: release-version: ${{ inputs.release-version }} ``` After: ```yaml - name: Validate Input uses: ./.github/workflows/validate-release-version with: release-version: ${{ inputs.release-version }} ``` GitHub Actions steps must use `uses:` or `run:`. The current form is invalid. This appears to have been introduced in llvm#196769. - Verified the workflow syntax change is minimal and correct. - No functional behavior intended beyond fixing the invalid step declaration.
EuphoricThinking
pushed a commit
to EuphoricThinking/llvm-project
that referenced
this pull request
May 14, 2026
…low (llvm#197107) Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml` to use a valid local action invocation. Before: ```yaml - name: Validate Input ./.github/workflows/validate-release-version with: release-version: ${{ inputs.release-version }} ``` After: ```yaml - name: Validate Input uses: ./.github/workflows/validate-release-version with: release-version: ${{ inputs.release-version }} ``` GitHub Actions steps must use `uses:` or `run:`. The current form is invalid. This appears to have been introduced in llvm#196769. - Verified the workflow syntax change is minimal and correct. - No functional behavior intended beyond fixing the invalid step declaration.
pedroMVicente
pushed a commit
to pedroMVicente/llvm-project
that referenced
this pull request
May 19, 2026
…low (llvm#197107) Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml` to use a valid local action invocation. Before: ```yaml - name: Validate Input ./.github/workflows/validate-release-version with: release-version: ${{ inputs.release-version }} ``` After: ```yaml - name: Validate Input uses: ./.github/workflows/validate-release-version with: release-version: ${{ inputs.release-version }} ``` GitHub Actions steps must use `uses:` or `run:`. The current form is invalid. This appears to have been introduced in llvm#196769. - Verified the workflow syntax change is minimal and correct. - No functional behavior intended beyond fixing the invalid step declaration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix the
Validate Inputstep in.github/workflows/release-doxygen.ymlto use a valid local action invocation.Before:
After:
GitHub Actions steps must use
uses:orrun:. The current form is invalid.This appears to have been introduced in #196769.